//
// Copyright (c) 2009 All Right Reserved
//
// vl
//
// 2009-01-01
// Contains ...
using JetBrains.Annotations;
namespace LargoCommon.Midi {
///
/// Represents MetaMessage types.
///
[UsedImplicitly]
public enum MidiMetaMessageType {
///
/// Represents sequencer number type.
///
[UsedImplicitly] SequenceNumber,
///
/// Represents the text type.
///
[UsedImplicitly] Text,
///
/// Represents the copyright type.
///
[UsedImplicitly] Copyright,
///
/// Represents the track name type.
///
[UsedImplicitly] TrackName,
///
/// Represents the instrument name type.
///
[UsedImplicitly] InstrumentName,
///
/// Represents the lyric type.
///
[UsedImplicitly] Lyric,
///
/// Represents the marker type.
///
[UsedImplicitly] Marker,
///
/// Represents the cue point type.
///
[UsedImplicitly] CuePoint,
///
/// Represents the program name type.
///
[UsedImplicitly] ProgramName,
///
/// Represents the device name type.
///
[UsedImplicitly] DeviceName,
///
/// Represents then end of track type.
///
[UsedImplicitly] MetaEndOfTrack = 0x2F,
///
/// Represents the tempo type.
///
[UsedImplicitly] Tempo = 0x51,
///
/// Represents the time code offset type.
///
[UsedImplicitly] SmpteOffset = 0x54,
///
/// Represents the time signature type.
///
[UsedImplicitly] TimeSignature = 0x58,
///
/// Represents the key signature type.
///
[UsedImplicitly] KeySignature,
///
/// Represents the proprietary event type.
///
[UsedImplicitly] ProprietaryEvent = 0x7F
}
}